home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Arashi 1.1.1 / source code / For your think c folder / Misc / RamFiles.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-13  |  809 b   |  48 lines  |  [TEXT/KAHL]

  1. /*/
  2.      Project Arashi: RamFiles.h
  3.      Major release: Version 1.1d2, 9/5/95
  4.  
  5.      Last modification: Thursday, October 13, 1994, 12:03
  6.      Created: Friday, October 23, 1992, 15:57
  7.  
  8.      Copyright © 1992-1994, Juri Munkki
  9. /*/
  10.  
  11. #include "cplusminusutil.h"
  12.  
  13. #ifdef NO_PRECOMPILED_HEADERS
  14. #include <Types.h>
  15. #endif
  16.  
  17.  
  18. short    IncreaseRamFile(
  19.     Handle    theFile,
  20.     long    *realSize,
  21.     long    *logicalSize,
  22.     long    increase);
  23.  
  24. short    IncreaseByClump(
  25.     Handle    theFile,
  26.     long    *realSize,
  27.     long    *logicalSize,
  28.     long    increase,
  29.     long    clumpSize);
  30.  
  31. short    OddIncreaseRamFile(
  32.     Handle    theFile,
  33.     long    *realSize,
  34.     long    *logicalSize,
  35.     long    increase);
  36.  
  37. short    OddIncreaseByClump(
  38.     Handle    theFile,
  39.     long    *realSize,
  40.     long    *logicalSize,
  41.     long    increase,
  42.     long    clumpSize);
  43.  
  44. void    PackRamFile(
  45.     Handle    theFile,
  46.     long    *realSize,
  47.     long    *logicalSize);
  48.